home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / scripts.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-12-19  |  3.9 KB  |  86 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    -
  5.    - ***** BEGIN LICENSE BLOCK *****
  6.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  7.    -
  8.    - The contents of this file are subject to the Mozilla Public License Version
  9.    - 1.1 (the "License"); you may not use this file except in compliance with
  10.    - the License. You may obtain a copy of the License at
  11.    - http://www.mozilla.org/MPL/
  12.    -
  13.    - Software distributed under the License is distributed on an "AS IS" basis,
  14.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  15.    - for the specific language governing rights and limitations under the
  16.    - License.
  17.    -
  18.    - The Original Code is The JavaScript Debugger.
  19.    -
  20.    - The Initial Developer of the Original Code is
  21.    - Netscape Communications Corporation.
  22.    - Portions created by the Initial Developer are Copyright (C) 1998
  23.    - the Initial Developer. All Rights Reserved.
  24.    -
  25.    - Contributor(s):
  26.    -   Robert Ginda, <rginda@netscape.com>, original author
  27.    -
  28.    - Alternatively, the contents of this file may be used under the terms of
  29.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  30.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  31.    - in which case the provisions of the GPL or the LGPL are applicable instead
  32.    - of those above. If you wish to allow use of your version of this file only
  33.    - under the terms of either the GPL or the LGPL, and not to allow others to
  34.    - use your version of this file under the terms of the MPL, indicate your
  35.    - decision by deleting the provisions above and replace them with the notice
  36.    - and other provisions required by the GPL or the LGPL. If you do not delete
  37.    - the provisions above, a recipient may use your version of this file under
  38.    - the terms of any one of the MPL, the GPL or the LGPL.
  39.    -
  40.    - ***** END LICENSE BLOCK ***** -->
  41.  
  42. <overlay id="chatzilla-scripts-overlay"
  43.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  44.  
  45.   <overlaytarget id="scripts-overlay-target">
  46.  
  47.     <script src="chrome://global/content/strres.js"/>
  48.     <script src="chrome://global/content/nsUserSettings.js"/>
  49.     <script src="chrome://global/content/nsTransferable.js"/>
  50.     <script src="chrome://global/content/nsClipboard.js"/>
  51.     <script src="chrome://global/content/nsDragAndDrop.js"/>
  52.  
  53.     <script><![CDATA[
  54.         /* utils.js overloads the standard JS messages with prompt service 
  55.          * calls, which require the locale support to have loaded. This next 
  56.          * line is needed so that the onLoad function in handlers.js can 
  57.          * display the "error loading ChatZilla" message even if the locale
  58.          * support is what failed to load.
  59.          */
  60.         window.baseAlert = window.alert;
  61.     ]]></script>
  62.     <script src="chrome://chatzilla/content/lib/js/utils.js"/>
  63.     <script src="chrome://chatzilla/content/lib/js/connection-xpcom.js"/>
  64.     <script src="chrome://chatzilla/content/lib/js/events.js"/>
  65.     <script src="chrome://chatzilla/content/lib/js/command-manager.js"/>
  66.     <script src="chrome://chatzilla/content/lib/js/pref-manager.js"/>
  67.     <script src="chrome://chatzilla/content/lib/js/message-manager.js"/>
  68.     <script src="chrome://chatzilla/content/lib/js/menu-manager.js"/>
  69.     <script src="chrome://chatzilla/content/lib/js/irc.js"/>
  70.     <script src="chrome://chatzilla/content/lib/js/irc-debug.js"/>
  71.     <script src="chrome://chatzilla/content/lib/js/file-utils.js"/>
  72.     <script src="chrome://chatzilla/content/lib/js/dcc.js"/>
  73.     <script src="chrome://chatzilla/content/lib/xul/munger.js"/>
  74.  
  75.     <script src="chrome://chatzilla/content/static.js"/>
  76.     <script src="chrome://chatzilla/content/commands.js"/>
  77.     <script src="chrome://chatzilla/content/menus.js"/>
  78.     <script src="chrome://chatzilla/content/prefs.js"/>
  79.     <script src="chrome://chatzilla/content/messages.js"/>
  80.     <script src="chrome://chatzilla/content/handlers.js"/>
  81.     <script src="chrome://chatzilla/content/rdf.js"/>
  82.  
  83.   </overlaytarget>
  84.  
  85. </overlay>
  86.